home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / src / ntproc_p.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  620b  |  21 lines

  1. #ifndef __NTPROC_P_H__
  2. #define __NTPROC_P_H__
  3.  
  4. typedef void (_CALLBACK_ *SignalHandler)(int);
  5.     
  6. extern SignalHandler Signal _P_((int sig, SignalHandler handler));
  7. extern int Wait _P_((int *status));
  8. extern int Spawnve _P_((int mode, char *cmdname, char **argv, char **envp));
  9. extern void RegisterChild _P_((int pid, int fd));
  10. extern int ReadChildOutput _P_((int fd, char *buf, int max));
  11. extern int Win32KillProcess _P_((int pid, int sig));
  12.  
  13. #ifdef EMACSDEBUG
  14. extern void _VARARGS_ _DebPrint _P_((char *fmt, ...));
  15. #define DebPrint(args) _DebPrint args
  16. #else
  17. #define DebPrint(args)
  18. #endif
  19.  
  20. #endif
  21.